.blog-contenedor{
  padding: 40px 40px;
  padding-top: calc(40px + 100px);
  position: relative;
  height: 100vh;
  width: 100vw;
}


.blog {
    background-image: url('image/inicio/digital.png'); /* Cambia por tu imagen real */
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    margin-top: 0;
    border-radius: 50px;
  }
  
  .blog .overlay {
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
    text-align: left;
    max-width: 600px;
  }
  
  .blog .overlay h1 {
    
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .blog .btn {
    color: white;
    text-decoration: underline;
    font-size: 1rem;
  }

  
  .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 70px 20px;
    gap: 20px;
    background-color: white;

  }
  
  .card {
    background: #fff;
    padding: 20px;
    width: 280px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: -150px;
    position: relative;
    z-index: 10;
  }
  
  .card img {
    margin-top: 10px;
    width: 100%;
    height: 225px;
    object-fit: cover;

  }

  .cards h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }